remove return value, this function returns void.
authorMichael Natterer <mitch@imendio.com>
Wed, 6 Aug 2008 11:59:35 +0000 (11:59 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Wed, 6 Aug 2008 11:59:35 +0000 (11:59 +0000)
2008-08-06  Michael Natterer  <mitch@imendio.com>

* modules/printbackends/cups/gtkcupsutils.c
(gtk_cups_connection_test_free): remove return value, this
function returns void.

svn path=/trunk/; revision=21022

ChangeLog
modules/printbackends/cups/gtkcupsutils.c

index 9efa5b11926ccdeb5a6e7d1ce8b4e071ab721a82..f89863d42439c9e0f3604fe73f7de0f5b0b4ff90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-06  Michael Natterer  <mitch@imendio.com>
+
+       * modules/printbackends/cups/gtkcupsutils.c
+       (gtk_cups_connection_test_free): remove return value, this
+       function returns void.
+
 2008-08-06  Michael Natterer  <mitch@imendio.com>
 
        * gtk/gtkcombobox.c
index 09cd6906cfdc6064e3e569d38dab2fa8585b1f0f..d11653b359b6026d1fffe9a8b956027cf59f9630 100644 (file)
@@ -1303,7 +1303,7 @@ void
 gtk_cups_connection_test_free (GtkCupsConnectionTest *test)
 {
   if (test == NULL)
-    return FALSE;
+    return;
 
   test->current_addr = NULL;
   httpAddrFreeList (test->addrlist);